home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / ida / lib / checkmail next >
Encoding:
Text File  |  1991-01-02  |  130 b   |  8 lines

  1. #!/bin/sh
  2. if [ $# -eq 0 ]; then
  3.     PIDFILE=/etc/sendmail.pid
  4.     /bin/ps wwu`cat ${PIDFILE}`
  5. else
  6.     ps wwuax | egrep 'USER|sendmail'
  7. fi
  8.